Mutable Iterable
Classes that inherit from this interface can be represented as a sequence of elements that can be iterated over and that supports removing elements during iteration.
Parameters
T
the type of element being iterated over. The mutable iterator is invariant in its element type.
Functions
iterator
Link copied to clipboard
Returns an iterator over the elements of this sequence that supports removing elements during iteration.
Inheritors
Extensions
remove All
Link copied to clipboard
Removes all elements from this MutableIterable that match the given predicate.
retain All
Link copied to clipboard
Retains only elements of this MutableIterable that match the given predicate.